home *** CD-ROM | disk | FTP | other *** search
/ Resource for Source: C/C++ / Resource for Source - C-C++.iso / codelib6 / v_08_05 / 8n05076c < prev    next >
Encoding:
Text File  |  1995-11-01  |  214 b   |  16 lines

  1.  
  2. Listing 9:
  3. main()
  4. {
  5.     test();
  6.     printf("test() called, testcalled = %d\n", testcalled);
  7.     test();
  8.     printf("test() called, testcalled = %d\n", testcalled);
  9.     exit(0);
  10. }
  11. static test()
  12. {
  13.     testcalled++;
  14. }
  15.  
  16.